home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / editor / gdphrc14.lha / ged-phrasecomp / PhraseCompletion.doc < prev    next >
Text File  |  1996-04-27  |  2KB  |  72 lines

  1. GoldED-API/PharseCompletion                        GoldED-API/PharseCompletion
  2.  
  3.     $VER: PharseCompletion.doc 1.4 (27.4.96)
  4.  
  5.     NAME
  6.         PhraseCompletion
  7.  
  8.     VERSION
  9.         1.4
  10.  
  11.     DESCRIPTION
  12.         Just run GoldED and load this as an API-Client ! Then you have the
  13.         following new ARexx command :
  14.  
  15.     TEMPLATE
  16.         PHRASECOMPLETION WHITESPACES,MAX/N,CASE/S,BACKWARD/S,ALL/S
  17.  
  18.     FORMAT
  19.         PHRASECOMPLETION [[WHITESPACES] whitespace-characters] [[MAX] number]
  20.                          [CASE] [BACKWARD] [ALL]
  21.  
  22.     DESCRIPTION
  23.         The PHRASECOMPLETION ARexx command provides you a new phrase
  24.         completion method. It extracts the actual word-phrase (before cursor)
  25.         and tries to complete this phrase. This is done by searching in the
  26.         buffers for a word beginning with this extracted phrase. The first
  27.         found is displayed in the buffer. If there are more than one words
  28.         matching the phrase, you can step through all found words by just
  29.         using this command again with same cursor position. If the last word
  30.         is reached a ERROR_NO_MORE_ENTRIES error code is returned and then it
  31.         starts again with the first word.
  32.  
  33.     INPUTS
  34.         WHITESPACES -- a string, which represent the characters to use as
  35.             whitespaces. Default is " \t".
  36.  
  37.         MAX -- maximal number of matching words. Default is ~0.
  38.  
  39.         CASE -- don't ignore case-sensetive. Default is ignore.
  40.  
  41.         BACKWARD -- normaly the buffer is first searched from the actual
  42.             line to the beginnig and then from actual line to the end of
  43.             the buffer. This argument swaps the search direction.
  44.  
  45.         ALL -- searchs in all opened buffers
  46.  
  47.     RESULTS
  48.         the command returns RC_OK, if it could complete the pharse. RC_WARN
  49.         if not !
  50.  
  51.     SPECIAL REQUIREMENTS
  52.         Needs GoldED 3.x to run.
  53.  
  54.     AVAILABILITY
  55.         ftp://wuarchive.wustl.edu/pub/aminet/text/edit/GED-PhrCmp1.4.lha
  56.         And all other Aminet sites
  57.  
  58.     AUTHOR
  59.         Stefan Ruppert
  60.         Windthorststrasse 5
  61.         65439 Floersheim
  62.         Germany
  63.  
  64.         Internet:
  65.         ruppert@informatik.fh-wiesbaden.de
  66.         ruppert@goofy.zdv.uni-mainz.de
  67.         http://www.uni-mainz.de/~ruppert
  68.  
  69.     SEE ALSO
  70.         Emacs, GoldED/API
  71.  
  72.